icon_home

06_CSS웹표준 레이아웃_다양한 가로 배치 방법

• 웹페이지의 콘텐츠를 배치하기 위한 방법으로는
1. table(수치값이 들어가는 내용을 만들 때 _ 로그인, 달력, 게시판, 일정표 등)
2. float(이미지와 텍스트를 배열할 때 좋음)
3. flex, grid(플렉스, 그리드는 레이아웃 짤 때) 방식이 있음

• 컨텐츠의 종류에 따라 다른 방법을 사용해 배치해야함

• 이 중에서 css로 콘텐츠를 가로방향으로 배치하는 방법에는
요소의 성격인 block, inline, inline-block, flex, grid, none, table, table-row, table-cell 중
display:inline, display:inline-block, float:left, display:flex를 사용해 적용해 본다.

1. display:inline;

2. display: inline-block;

3. float:left;

4. display: flex;